#! /bin/sh
path=$(dirname "$0")
cd "$path"

# copy
unzip -o PCL6\ Compatible.zip -d /boot/home/config/add-ons/Print

msg=$'PCL6 Compatible printer driver installed.\n\nTo install a printer use the printers preferences application.'
open="Open Printers Preferences"
close="Bye"
cmd=$(alert --info "$msg" "$close" "$open")
if [ "$cmd" == "$open" ] ; then
	/boot/beos/preferences/Printers
fi
